home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-02-12 | 2.1 KB | 86 lines | [TEXT/MPS ] |
- ;
- ; File: FileTransferTools.a
- ;
- ; Contains: CommToolbox File Transfer Tools Interfaces.
- ;
- ; Version: Technology: System 7.5
- ; Release: Universal Interfaces 3.1
- ;
- ; Copyright: © 1988-1998 by Apple Computer, Inc., all rights reserved
- ;
- ; Bugs?: Please include the the file and version information (from above) with
- ; the problem description. Developers belonging to one of the Apple
- ; developer programs can submit bug reports to:
- ;
- ; devsupport@apple.com
- ;
- ;
- IF &TYPE('__FILETRANSFERTOOLS__') = 'UNDEFINED' THEN
- __FILETRANSFERTOOLS__ SET 1
-
- IF &TYPE('__CONDITIONALMACROS__') = 'UNDEFINED' THEN
- include 'ConditionalMacros.a'
- ENDIF
- IF &TYPE('__DIALOGS__') = 'UNDEFINED' THEN
- include 'Dialogs.a'
- ENDIF
- IF &TYPE('__FILETRANSFERS__') = 'UNDEFINED' THEN
- include 'FileTransfers.a'
- ENDIF
-
-
- ; DEFs
- fdefType EQU 'fdef'
- fsetType EQU 'fset'
- fvalType EQU 'fval'
- flocType EQU 'floc'
- fscrType EQU 'fscr'
- fbndType EQU 'fbnd'
- fverType EQU 'vers'
-
- ; control
- ftInitMsg EQU 0
- ftDisposeMsg EQU 1
- ftSuspendMsg EQU 2
- ftResumeMsg EQU 3
- ftMenuMsg EQU 4
- ftEventMsg EQU 5
- ftActivateMsg EQU 6
- ftDeactivateMsg EQU 7
- ftGetErrorStringMsg EQU 8
- ftAbortMsg EQU 52
- ftStartMsg EQU 100
- ftExecMsg EQU 102
- ftSendMsg EQU 103
- ftReceiveMsg EQU 104
-
- ; setup
- ftSpreflightMsg EQU 0
- ftSsetupMsg EQU 1
- ftSitemMsg EQU 2
- ftSfilterMsg EQU 3
- ftScleanupMsg EQU 4
-
- ; validate
- ftValidateMsg EQU 0
- ftDefaultMsg EQU 1
-
- ; scripting
- ftMgetMsg EQU 0
- ftMsetMsg EQU 1
-
- ; localization
- ftL2English EQU 0
- ftL2Intl EQU 1
- FTSetupStruct RECORD 0
- theDialog ds.l 1 ; offset: $0 (0) ; the dialog form the application
- count ds.w 1 ; offset: $4 (4) ; first appended item
- theConfig ds.l 1 ; offset: $6 (6) ; the config record to setup
- procID ds.w 1 ; offset: $A (10) ; procID of the tool
- sizeof EQU * ; size: $C (12)
- ENDR
- ; typedef struct FTSetupStruct * FTSetupPtr
-
- ENDIF ; __FILETRANSFERTOOLS__
-
-